home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 October
/
EnigmA AMIGA RUN 22 (1997)(G.R. Edizioni)(IT)[!][issue 1997-10 & 11][EAR-CD VI].iso
/
progs
/
demos
/
arteffect2.demo
/
rexx
/
help.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-04-11
|
406b
|
25 lines
/*
list all commands and their templates
*/
options results
address "ArtEffect"
/* request commandlist */
help STEM me.
do i=0 to me.commandlist.count-1
help command me.commandlist.i
say "Command" i+1 || ": " || result
end
help STEM me. pluginlist
do i=0 to me.commandlist.count-1
print = "PlugIn " i+1 || ": " || me.commandlist.i
help plugin me.commandlist.i
say print || ": " || result
end